home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / tm400-3.zip / SPITFIRE.SCR < prev    next >
Text File  |  1993-01-05  |  480b  |  24 lines

  1. ;
  2. ; SPITFIRE.SCR is a log on script file for SpitFire BBS
  3. ;
  4.  
  5. FirstName = "first"          ; put you name here
  6. LastName = "last"
  7. Color = "Y"                  ; "Y"es or "N"o
  8.  
  9. SET AutoStop,On              ; stop script if carrier is lost
  10. Waitfor 0                    ; unlimited waiting time
  11.  
  12. Waitfor "Do you want ANSI COLOR GRAPHICS? [y/N]"
  13. Put Color,
  14.  
  15. Waitfor "first name"
  16. Put FirstName
  17.  
  18. Waitfor "last name"
  19. Put LastName
  20.  
  21. Waitfor "your password:"
  22. Put "^&"
  23.  
  24.